Skip to content

根据业务申请编号查询申请状态

接口适用场景:当服务商提交申请单后,需要定期调用此接口查询申请单的审核状态。

请求参数类型描述
business_codestring业务申请编号
php
$instance->v3->brand->applyments->businessCode->_business_code_->getAsync([
  'business_code' => '190001351110000',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/brand/applyments/business-code/{business_code}')->getAsync([
  'business_code' => '190001351110000',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/brand/applyments/business-code/{business_code}']->getAsync([
  'business_code' => '190001351110000',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->brand->applyments->businessCode->_business_code_->get([
  'business_code' => '190001351110000',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/brand/applyments/business-code/{business_code}')->get([
  'business_code' => '190001351110000',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/brand/applyments/business-code/{business_code}']->get([
  'business_code' => '190001351110000',
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典类型描述
applyment_idstring微信支付申请单号
business_codestring业务申请编号
applyment_statestring申请状态
APPLYMENT_STATE_UNKNOWN | APPLYMENT_STATE_UNSUBMITTED | APPLYMENT_STATE_WAITING_VALIDATE | APPLYMENT_STATE_WAITING_AUDIT | APPLYMENT_STATE_WAITING_AUTH | APPLYMENT_STATE_OPEN_ACCOUNT | APPLYMENT_STATE_FINISH | APPLYMENT_STATE_AUDIT_REJECTED | APPLYMENT_STATE_CANCELED 枚举值之一
applyment_state_descstring申请状态说明
authorization_confirmation_qr_codestring授权确认二维码链接
reject_reasonstring驳回原因
brand_idstring品牌ID

参阅 官方文档

Published on the GitHub by TheNorthMemory